jQWidgets Forums
Forum Replies Created
-
Author
-
So you mean it’s just an idea, not really a working one? Could you provide a working example? I can’t make it work neither with jqxDropDownButton or a bootstrap dropdown. It keeps trowing an erorr message Cannot read property ‘clear’ of undefined in
if (c._sizeChanged || b) { c._draw.clear(); c._renderSVG(); c._sizeChanged = false; c._draw.refresh() }
Thanks!
I am refering to the popup element not to the input element. How can it be bigger?
https://ibb.co/6nX3QtW
January 4, 2021 at 2:11 pm in reply to: Changing theme breaks pager buttons Changing theme breaks pager buttons #114133Thanks
December 5, 2020 at 6:44 pm in reply to: all day area occupies all the space in weekView all day area occupies all the space in weekView #113746Thanks,
in the meantime I have found a workaround by settings a fixed height by
allDayRowHeight
, enabling the scrolldiv[id^='contenttable2']{ overflow-y: auto !important; background-color:white; border-bottom: ridge;}
and removing unused tr[id^='contenttable2'] table>tbody>tr
. It looks like it does the trick.November 18, 2020 at 10:34 am in reply to: appointment click not firing in agenda view appointment click not firing in agenda view #113643November 15, 2020 at 3:34 pm in reply to: all day area occupies all the space in weekView all day area occupies all the space in weekView #113607I”ve updated the fiddle, https://jsfiddle.net/p439bj5e/. No whow can I enable the scroll to see all the appointments in the all day area?
November 15, 2020 at 10:17 am in reply to: all day area occupies all the space in weekView all day area occupies all the space in weekView #113605Hi,
and there will never be enough space for all data to fit on the screen. How is this supposed to be used in real world with big data?
In week view, week timeline, month timeline big height means scrolling down the page and then the calendar header gets out of sight and so you are looking at the appointments and understand nothing about their placement in time. This is very unpractical.
So how do we solve this?
November 13, 2020 at 9:29 am in reply to: appointment click not firing in agenda view appointment click not firing in agenda view #113602Now it points to the latest version. But even so the click is not working in agenda view in the vue example https://codesandbox.io/s/modest-framework-kv6t2.
Please take a look and confirm if is a configuration problem or a jqwidgets bug.November 12, 2020 at 7:28 pm in reply to: appointment click not firing in agenda view appointment click not firing in agenda view #113592Something is wrong here, please take a look at these examples. In the JQuery version the click works in agenda view https://jsfiddle.net/2dj1azbv/, but in the Vue version it doesn’t https://codesandbox.io/s/modest-framework-kv6t2
November 11, 2020 at 11:03 pm in reply to: DataGrid Filter All with server side filtering DataGrid Filter All with server side filtering #113584Thanks,
in the end I came up with a custom table search solution
November 9, 2020 at 6:06 pm in reply to: cannot dynamically add HTMLElement cannot dynamically add HTMLElement #113551Thanks Martin, this is a good workaround
November 6, 2020 at 9:23 am in reply to: DataGrid Filter All with server side filtering DataGrid Filter All with server side filtering #113526Also is the
columns.filterable
property being considered in this case?November 5, 2020 at 3:32 pm in reply to: need date filter value in standard format not localization based need date filter value in standard format not localization based #113523Hi,
it is not what I meant, below is my setup. But consider that I am binding to MySQL Database using PHP and server-side filtering. So what I mean is that when I filter the column the filter GET parameters look like
filtervalue0: 05.11.2020
, so this is’t working with mysql date format. I am expecting ISO 8601 likefiltervalue0: YYYY-MM-DD
.November 5, 2020 at 12:41 pm in reply to: cannot dynamically add HTMLElement cannot dynamically add HTMLElement #113521Thanks,
but I think that’s not very practical in vuejs case. I made the fiddle in jQuery because was easier.
My actual code in vuejs is:var ComponentClass = Vue.extend(SomeFormComponent); var instance = new ComponentClass(); var mounted = instance.$mount(); var formElement = instance.$el; this.$refs.myTabs.append(<code>title</code>, formElement)
How can this be overcome in vuejs case?
November 4, 2020 at 11:28 am in reply to: appointment html text messed up in agendaView appointment html text messed up in agendaView #113508Here is the fiddle https://jsfiddle.net/uj1atzns/
-
AuthorPosts