jQWidgets Forums
Forum Replies Created
-
Author
-
January 29, 2016 at 7:10 pm in reply to: Difference between ItemClick and Select Event in jqxtree Difference between ItemClick and Select Event in jqxtree #80935
Thanks Peter.
I will try with the latest release.
Thanks
Kannan
December 23, 2015 at 5:23 pm in reply to: Use of Splitter in pages with Master page. Use of Splitter in pages with Master page. #79738Hi Peter,
Thanks for your response.
It appears that we need to set the height 100% for the form tag also in order to work in IE9.
Thanks
Kannan
December 22, 2015 at 6:17 pm in reply to: Use of Splitter in pages with Master page. Use of Splitter in pages with Master page. #79677Hi Peter,
The issue is when setting the height to 100%.
For example in the following code, setting the height for $(‘#mainSplitter’) to 100% and running in IE9, the panel does not display.
Just a single line is displayed.
<script type=”text/javascript”>
$(document).ready(function () {
$(‘#mainSplitter’).jqxSplitter({ width: ’100%’, height: ’100%’, orientation: ‘vertical’, resizable: false, panels: [{ size: 150, min: 150, collapsible: false }] });
$(‘#contentSplitter’).jqxSplitter({ width: ’100%’, height: ’100%’, orientation: ‘horizontal’, resizable: true, panels: [{ size: ‘60%’, collapsible: false }] });
});
</script>
<div id=”mainSplitter”>
<div>
Left Panel
</div><div>
<div id=”contentSplitter”>
<div class=”feed-item-list-container” id=”feedUpperPanel”>
Grid Summary
</div><div id=”feedContentArea”>
Grid Details
</div>
</div></div>
</div>Thanks for your help.
Kannan
Thanks Peter. Setting the text-transform property resolved the issue.
– Kannan
Hi Mariya,
Setting the custom text using the OnLabel and OffLabel property works fine except the text is displayed in capitalized format.
Is there a way we can have the text displayed as it is when the OnLabel and OffLabel property value is set?
Thanks for your help.
Kannan
December 22, 2015 at 3:56 pm in reply to: Use of Splitter in pages with Master page. Use of Splitter in pages with Master page. #79669Hi Dimitar,
The Splitter control is not working with IE9.
It works fine in IE 10+, Chrome and Firefox.
Can you please let me know if this control has a limitation in IE9?
Thanks
Kannan
December 2, 2015 at 3:03 pm in reply to: Use of Splitter in pages with Master page. Use of Splitter in pages with Master page. #78807Thanks Dimitar.
That worked.
It is really strange having a commented div tag is causing an issue when placed in the content place holder.
The same code works without any issue when placed in a regular aspx page.
I am having a different issue when setting the height to 100%.
In the following code when I set the height for the mainSplitter to 100%, I am not able to see the panels displayed.
If the set the height other than 100% it works perfectly.
<asp:Content ID=”Content2″ ContentPlaceHolderID=”ContentPlaceHolder1″ runat=”Server”>
<script type=”text/javascript”>
$(document).ready(function () {
$(‘#mainSplitter’).jqxSplitter({ width: ‘100%’, height: 500, orientation: ‘vertical’, resizable: false, panels: [{ size: 150, min: 150, collapsible: false }] });
$(‘#contentSplitter’).jqxSplitter({ width: ‘100%’, height: ‘100%’, orientation: ‘horizontal’, resizable: true, panels: [{ size: ‘60%’, collapsible: false }] });
});
</script>
<div id=”mainSplitter”>
<div>
Left Panel
</div><div>
<div id=”contentSplitter”>
<div class=”feed-item-list-container” id=”feedUpperPanel”>
Grid Summary
</div><div id=”feedContentArea”>
Grid Details
</div>
</div></div>
</div></asp:Content>
Thanks for your help.
Kannan
November 30, 2015 at 2:26 pm in reply to: Use of Splitter in pages with Master page. Use of Splitter in pages with Master page. #78711Hi Dimitar,
Thanks for your response. The following is the error displayed in the browser’s console
Uncaught Invalid HTML Structure! jqxSplitter requires 1 container DIV tag and 2 nested DIV tags.
I have included all the required scripts for the jqxSplitter.
The following is the code from the aspx page.
<%@ Page Title=”” Language=”C#” MasterPageFile=”~/MasterPage.master” AutoEventWireup=”true” CodeFile=”JQSplitterToggleWithMasterPage.aspx.cs” Inherits=”JQWidgets_JQSplitterToggleWithMasterPage” %>
<asp:Content ID=”Content1″ ContentPlaceHolderID=”head” runat=”Server”>
</asp:Content>
<asp:Content ID=”Content2″ ContentPlaceHolderID=”ContentPlaceHolder1″ runat=”Server”><link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script>
<script type=”text/javascript” src=”scripts/demos.js”></script>
<script type=”text/javascript” src=”scripts/JQDateTimeInputUtils.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdatetimeinput.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcalendar.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxtooltip.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxscrollbar.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxlistbox.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdropdownlist.js”></script>
<script type=”text/javascript” src=”jqwidgets/globalization/globalize.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxsplitter.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxgrid.js”></script><script type=”text/javascript” src=”jqwidgets/jqxgrid.selection.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxgrid.columnsresize.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdata.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxsplitter.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxinput.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxnavigationbar.js”></script><script type=”text/javascript” src=”jqwidgets/jqxcheckbox.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxtree.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxpanel.js”></script><script type=”text/javascript”>
$(document).ready(function () {
$(‘#mainSplitter’).jqxSplitter({ width: ‘100%’, height: ‘100%’, orientation: ‘vertical’, panels: [{ size: 300, collapsible: false }] });
$(‘#firstNested’).jqxSplitter({ width: ‘100%’, height: ‘100%’, orientation: ‘horizontal’, panels: [{ size: 300, collapsible: false }] });
$(‘#secondNested’).jqxSplitter({ width: ‘100%’, height: ‘100%’, showSplitBar: true, orientation: ‘vertical’, panels: [{ size: 150 }] });
$(‘#thirdNested’).jqxSplitter({ width: ‘100%’, height: ‘100%’, orientation: ‘vertical’, panels: [{ size: 150, collapsible: false }] });
});
</script>
<div id=”mainSplitter”>
<div>
<div id=”thirdNested”>
<div>
<span>Panel 4</span>
</div><%– <div>
<span>Panel 5</span>
</div>–%>
</div></div>
<div>
<div id=”firstNested”>
<div>
<div id=”secondNested”>
<div>
<span>Panel 1</span>
</div><div>
<span>Panel 2</span>
</div></div>
</div>
<div>
<span>Panel 3 </span>
</div></div>
</div>
</div>
</asp:Content>
<asp:Content ID=”Content3″ ContentPlaceHolderID=”ContentPlaceHolder2″ runat=”Server”>
</asp:Content>The above code works when I remove the master page and place it in the regular aspx page.
I am currently using JQWIDGETS version 3.5.0
Any help would be appreciated.
Thanks
Kannan
April 20, 2015 at 3:18 pm in reply to: Multiple instances of the same notification are being opened . Multiple instances of the same notification are being opened . #70078Hi Nadezhda
Thanks for the sample. That works perfectly.
Thanks
Kannan
April 17, 2015 at 2:08 pm in reply to: Multiple instances of the same notification are being opened . Multiple instances of the same notification are being opened . #70013Hi Nadezhda
Thanks for the sample.
But this does not resolve the problem.
The sample that you have provided displays the notification on the first button click.
Any subsequent button clicks, will not display the notification bar.
I need only one instance of notification to be displayed every time the user clicks on the button.
Thanks for your help.
Kannan Jeyamani
-
AuthorPosts