jQWidgets Forums
Forum Replies Created
-
Author
-
April 26, 2017 at 8:17 pm in reply to: changing the pagesize of grid changing the pagesize of grid #93178
When the pagesize changes the dropdown, the listed items still only shows the 4 items previously set.
See the 13-16 is only displaying 4 items even though the pagesize has been changed to 10.April 26, 2017 at 7:28 pm in reply to: changing the pagesize of grid changing the pagesize of grid #93177I tried putting this into the ready function – doesn’t seem to fire.
$(“#Grid5”).on(“ready”, function ()
{
$(‘#Grid5’).jqxGrid({ pagesize: app_pagesize });
console.log(“app_pagesize: ” + app_pagesize);
});April 26, 2017 at 6:12 pm in reply to: changing the pagesize of grid changing the pagesize of grid #93175If I am saving the pagesize and upon reopening my app, I want to set the page size at the start of my application. I have three different grids I am trying to set their size. I am not having any luck in getting the saved size to override the design page size.
Ideas?
April 22, 2017 at 11:37 am in reply to: How to change width of the row selector icon How to change width of the row selector icon #93076I figured it out, groupindentwidth.
April 6, 2017 at 11:02 pm in reply to: How to change a cell's background color How to change a cell's background color #92755One other question, if I wanted to change the value of the text in the above cellrenderer function how would I make a change so the new text appears in my grid, rather than what was originally assigned?
Thank you,
RobbApril 6, 2017 at 5:11 am in reply to: How to change a cell's background color How to change a cell's background color #92718I have attempted to change the background-color based on the value of my Color field. Although, this is not working. Any guidance?
var cellsrenderer = function(row, column, value, defaultHtml, columnSettings, record) { var element = $(defaultHtml); var sColor = record["Color"]; element.css({ 'background-color': sColor }); return element[0].outerHTML; }
-
AuthorPosts