jQWidgets Forums
Forum Replies Created
-
Author
-
November 9, 2016 at 5:43 pm in reply to: jqxDockingLayout Add Icon to Title jqxDockingLayout Add Icon to Title #88899
Thanks Dimitar for clicking over title. I want dragging on conditional basis so i cannot go for jqxLayout.
dockingLayout is closer to my requirement that’s why i am using this. Having One more query related to ‘type’ of items array of dockingLayout. Actually my requirement is to create two draggable and resizable panel in one dockingLayout. To achieve this i have used documentGroup type. Refer code:
var layout = [
{
type: ‘layoutGroup’,
orientation:’horizontal’,
items: [
{
type: ‘documentGroup’,
width: ‘100%’,
height: ‘100%’,
items: [{
type: ‘documentPanel’,
title: ‘Pane1’,
contentContainer: ‘Panel1’,
}]
},
{
type: ‘documentGroup’,
width: ‘100%’,
height: ‘100%’,
items: [{
type: ‘documentPanel’,
title: ‘Pane2’,
contentContainer: ‘Panel2’
}]
},
]
}];
This returns me two separate panels which is as per my requirement. But the issue is Panel1 is resizing from right side and Panel2 is resizing from left side, also when i resizes the Panel1, Panel2 also gets resized which is not accepted. There is some error while forming layout variable but i am not able to correct it.
Please let me know how can i set the ‘type’ property so that i can have two panels with resizing from same side without effecting each other.November 8, 2016 at 10:56 am in reply to: jqxDockingLayout Add Icon to Title jqxDockingLayout Add Icon to Title #88833Hi,
How can i add click event to the title in jqxDockingLayout. Also can i stop dragging of panels after some operation?
Hello,
I wanted to implement the multiple windows feature on a single page. I saw the example of multiple-windows in jquery but i want to implement this in Angular2 using <angularWindow> directive. I am unable to implement this in angular2. Please provide me a direction to implement this in angular2 as well.
Thanks
November 5, 2016 at 9:15 pm in reply to: drag n drop issue with fixed position drag n drop issue with fixed position #88768Hello,
Is there any way to restrict overlapping of windows? Right now i can put one window on another window but i need to restrict the overlapping. Please let me know how can i achieve this.
November 3, 2016 at 10:07 am in reply to: Multiple windows with the same id Multiple windows with the same id #88693Hi,
Is it possible to achieve multiple windows feature in angular2?
I want to add new windows on button click. I am unable to achieve this in angular2. Please provide me a solution of it if exist.Hi,
I am using jqxWindowComponent of Angular2. This is working fine for me except the resizing functionality. I want to resize the window only from bottom right corner as in eg: https://jqueryui.com/resizable/.
Is it possible to do that?November 2, 2016 at 12:45 pm in reply to: scrolling to validator tooltip in expander within jqxwindow scrolling to validator tooltip in expander within jqxwindow #88671Hi,
I am using jqxWindowComponent of Angular2. This is working fine for me except the resizing functionality. I want to resize the window component only from bottom right corner as in eg:https://jqueryui.com/resizable/.
Is it possible to do that? -
AuthorPosts