jQWidgets Forums
Forum Replies Created
-
Author
-
July 4, 2016 at 12:56 pm in reply to: Copy and Paste edit collumn Copy and Paste edit collumn #85555
Hi krewlion,
We cant see such a behavior. Can you please provide us with a fiddle?
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/June 30, 2016 at 8:17 am in reply to: Event for Incremental Search Event for Incremental Search #85505Hi VictorRein,
Try the
close
event and jQuerymouseleave
for the navigation away.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi George S,
Can you please send us a working fiddle?
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/June 20, 2016 at 11:11 am in reply to: Color rendering of dropdownlist items in a form Color rendering of dropdownlist items in a form #85268Hi alastairwalker,
Use the
selectionRenderer
callback function. Here is the code you need:selectionRenderer: function () { var item = $('#jqxWidget').jqxDropDownList('getSelectedItem'); if (item.element) { var color = item.element.childNodes[0].style.backgroundColor; return '<span style="background-color:' + color + '">' + item.label + '</span'; } return "<b>Please Choose:</b>"; }
June 20, 2016 at 9:59 am in reply to: Filter panel should not open at either left side or right side of column, Filter panel should not open at either left side or right side of column, #85264Hi Nagesh,
That behavior of the Grid cannot be modified.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/June 15, 2016 at 6:43 am in reply to: Color rendering of dropdownlist items in a form Color rendering of dropdownlist items in a form #85116Hi Alastair,
You can use the
renderer
callback function which the jqxdropDownList offers.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi Norm,
First, thanks for the feedback
Now on the point:1. The value set from the dropdown is on click. When you initialize the grid you don`t click on the dropdown.
That is why nothing happens on initialization. So you must specifypageSize
property in the grid initialization code. For you casepageSize: 15
.2. This is happening because when you click on a dropdown option you render the grid and the
pagerrenderer
property is called again so you create the dropdown from scratch withselectedIndex:0
. The solution is to make theselectedIndex
take dynamic value :Instead of :
dropdown.jqxDropDownList({ source: ['15', '30', '50', '100'], selectedIndex: 0, width: 50, height: 17, autoDropDownHeight: true });
Write down :
var source = ['15', '30', '50', '100']; dropdown.jqxDropDownList({ source: source, selectedIndex: source.indexOf((paginginfo.pagesize).toString()), width: 50, height: 17, autoDropDownHeight: true });
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi nklapper,
You are using the
datainfo.pagingInformation
which does not contain the rows count(console.log
it and you will see).
A few lines below there is adatainfo.rowscount
which does.
So leavevar paginginfo
bevar paginginfo = datainfo.paginginformation;
and instead of
label.text("1-" + paginginfo.pagesize + ' of ' + datainfo.rowscountA);
writevar rowsCountWithCommas = numberWithCommas(datainfo.rowscount); label.text("1-" + paginginfo.pagesize + ' of ' + rowsCountWithCommas)
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi nklapper,
Take a look at this demo:
http://jsfiddle.net/jqwidgets/5fsjV/
As you can see you can make the look all custom.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/May 8, 2016 at 1:15 pm in reply to: Kanban Column Initial Collapsed State and/or Methods Kanban Column Initial Collapsed State and/or Methods #84181Hi lightonb,
We cant see such behavior. Are you using the latest version of jQWidgets(4.1.2) ?
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi nklapper,
Can you please provide us a fiddle?
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/May 6, 2016 at 12:01 pm in reply to: PopUp Window "Error: Invalid minWidth!" PopUp Window "Error: Invalid minWidth!" #84157Hi szizso,
By default
maxWidth
is 800 and you cant setminWidth
to be bigger thanmaxWidth
.
You must setminWidth
to be less thanmaxWidth
.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/May 6, 2016 at 11:33 am in reply to: PopUp Window "Error: Invalid minWidth!" PopUp Window "Error: Invalid minWidth!" #84155Hi szizso,
Can you please provide us a fiddle?
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/May 4, 2016 at 11:31 am in reply to: select all checkbox selects all the pages select all checkbox selects all the pages #84101Hi Shelan,
It is not possible to select/unselect only current page.
And the current version of jQWidgets is 4.1.2Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/ -
AuthorPosts