jQWidgets Forums
Forum Replies Created
-
Author
-
June 16, 2017 at 10:09 am in reply to: export jqxgrid data to excel sheet locally export jqxgrid data to excel sheet locally #94368
Also i am using SharePoint and my user interface is plain html with backend SharePoint List and html pages are stored in SharePoint document library
June 16, 2017 at 10:06 am in reply to: export jqxgrid data to excel sheet locally export jqxgrid data to excel sheet locally #94367I have enterprise license, howeever export to excel is failing with below error. Not sure what to do.
Request Entity Too Large
The requested resource
/subfolder1/export_server/dataexport.php
does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit.January 23, 2017 at 6:43 am in reply to: iframe scrolling issue using with treeview, splitter and tabs iframe scrolling issue using with treeview, splitter and tabs #90886Hi,
I am using vertical splitter with 1 panel using Jqxtree and another Jqxtab
However when i try to implement scroll for tree using splitter it does come however it shows two scrolls one for splitter and another under jqxtree.
One under Jqxtree works fine if we scroll down, however for splitter scroll does n’t work if the content is too much for jqxtree.
How to resolve this issue of 2 scroll converting in one scroll
<asp:Content ID=”Content4″ ContentPlaceHolderID=”maincontent” runat=”server”>
<div id=”dashboardSplitter”>
<div id=”splitter-panel” style=”overflow: auto”>
<div id=’fosTreeGrid’ class=”fosTreeGrid”></div>
</div>
<div id=”splitter-panel2″>
<div id=”sp2Tabs” class=”fosTreeGrid” style=””>- TEST 1
- TEST 2
<div>
</div>
<div>
<div id=”fosTasksGrid” class=”fosTreeGrid”></div>
</div>
</div>
</div>
</div>
</asp:Content>this.Init = function () {
self.ElementDashboardSplitter.jqxSplitter({ width: ‘100%’, height: ‘100%’, panels: [{ size: ‘80%’, size: ‘20%’ }] });
self.ElementFOSTreeGridView.jqxTree({ width: ‘100%’, height: ‘100%’ });
self.ElementSP2Tab.jqxTabs({ height: ‘100%’, width: ‘100%’, position: ‘top’, showCloseButtons: true });
self.DownloadInventory();
}January 17, 2017 at 1:24 pm in reply to: Custom Fields in Tree source Custom Fields in Tree source #90742I am using jqtree for building tree, w.r.t to above my hiearchy is created.
However i am little confused at
var records = dataAdapter.getRecordsHierarchy(‘id’, ‘parentid’, ‘items’, [{ name: ‘text’, map: ‘label’ }]);
because it will create hiearchy internally, so i get at the root 5 items and internally it has Items array again.
So my question is, how does still recursion function works, because my id never matchingone more thing at this statement
if (id == object[i].id)
i am getting left side id as “jqxWidget86e6b29f” and right side id as source data actual Id.
I am not sure how it will work -
AuthorPosts