jQWidgets Forums
Forum Replies Created
-
Author
-
April 20, 2016 at 7:12 am in reply to: Splitter does not totally expand Splitter does not totally expand #83687
Hello Hristo,
If I set width=100%, there will have a horizontal scrollbar.
Best regards,
PhucApril 17, 2016 at 4:28 am in reply to: Splitter does not work with Compability View Settings in IE Splitter does not work with Compability View Settings in IE #83559Hello everyone!
I sovled my problem. It’s just very simple solution.
I only need to add the following tag: <meta http-equiv=”X-UA-Compatible” content=”IE=8,9,10,11″/> inner <head>
The page will work fine.April 11, 2016 at 9:33 am in reply to: Remove button expand/collapse Remove button expand/collapse #83347Hi Peter,
It works for me.
Thank you a lot!
Best regards,
PhucJanuary 11, 2016 at 3:59 am in reply to: Selecting only one row in process Selecting only one row in process #80274Sorry Dimitar,
I would like to keep the selected row after postback and disable select the other rows. If I set ‘selectionmode’ = ‘none’, I can not re-select the row before postback. Could you please give me another solution?
Thank you so much!
Best regards,
Hong PhucJanuary 9, 2016 at 2:28 am in reply to: Set position of scrollbar jqxGrid Set position of scrollbar jqxGrid #80266Hello Hristo,
Thank you a lot. I solved my issue. I have 2 grids with 2 types of selectionmode. In case of each one, I implement the following:
– Grid A (selectionmode = singleselect):
ready: function () {
$(“#jqxgridA”).jqxGrid(‘ensurerowvisible’, sessionRowIndex);
},With sessionRowIndex stores selection row index into session and send to client side after postback.
– Grid B (selectionmode = checkbox):
ready: function () {
if (sessionRowsIndexOnGridB.length > 0) {
var rowboundindex = $(‘#jqxgridB’).jqxGrid(‘getrowboundindex’, parseInt(sessionRowsIndexOnGridB[0], 10));
$(“#jqxgridB”).jqxGrid(‘ensurerowvisible’, rowboundindex);
}
},
With sessionRowsIndexOnGridB stores the list of selection row indexes into session and send to client side after postback.Thank you again.
Best regards,
Hong Phuc -
AuthorPosts