jQWidgets Forums
Forum Replies Created
-
Author
-
hi okasha,
i had similar kind of problem with IE 9, when i open my page with mozilla it is working fine, but in IE, grid is not shown.
i have unchecked the option “Display all websites in compatibility view” under compatibility view settings in tools.
it worked for me.March 8, 2013 at 11:26 am in reply to: selecting value instead of name from drop down list in grid selecting value instead of name from drop down list in grid #16538yes, i could do it.
Thank you
I am not able to access the value of jqxComboBox from the server with the name of widget’s DIV tag
Request.QueryString(“eqptdiv”) where eqptdiv is the name of the DIV tag.hope u understand my problem: i dont want to use the default dropdownlist provided by .net. i want to improve the look and feel of it with auto-complete functionality. so i went this way. is there any other way i can get this working without this much complication.
i am not actually submitting, i have an asp button control, in the onClick event, i want to access some thing like eqpt.Text as eqpt is an id of asp ddl control.
my above reply was modified some how…
two lines under “in my form” were missing and some more were missing
in my formin my form
in JS
$(“#”).hide();
$(“#eqptdup”).jqxComboBox({ width: ‘150px’, height: ’25px’, theme: theme });i have a function in my JS which populates ‘eqpt’ dropdownlist through ajax call on some event
and in that function iam populating combobox like below
$(“#eqptdup”).jqxComboBox(‘loadFromSelect’, ‘eqpt’);when user selects a value in combobox, iam updating the dropdownlist as below
$(“#eqptdup”).bind(‘select’, function (event) {
if (event.args) {
var args = event.args;
var index = args.item.index;
$(“#”).find(‘option’).eq(index).attr(“selected”, “true”);
alert($(“#”).val);
}
});upon clicking the submit button, in the server side iam not able to get the value of eqpt.
February 19, 2013 at 10:18 am in reply to: combobox with autocomplete and selectable only from the list combobox with autocomplete and selectable only from the list #15466Thank you.
February 19, 2013 at 10:17 am in reply to: export jqxgrid data to excel sheet locally export jqxgrid data to excel sheet locally #15465Thanks for your quick response.. able to download it locally.
February 19, 2013 at 9:32 am in reply to: combobox with autocomplete and selectable only from the list combobox with autocomplete and selectable only from the list #15462sorry that i faild to explain my requirement clearly,
i have a list of elements, user has to select only one among them.
but i used jqxcombobox, instead of jqxdropdownlist, because of its autocomplete facility.
but with jqxcombobox, user will have facility not only to select one from the list but also to write something which does not match with any of the elements in the list. how to restrict user not enter anything other than in the list without disturbing the auto-complete facility.February 19, 2013 at 9:12 am in reply to: export jqxgrid data to excel sheet locally export jqxgrid data to excel sheet locally #15457so i need to have developer or enterprise license for it to work without internet.
thank you. -
AuthorPosts