@boykomarkov22gmail-com
@boykomarkov22gmail-com
Forum Replies Created
-
AuthorPosts
-
Markov
KeymasterHi,
The approach which you use to add smart-tooltip to cells seems to be OK according to me. The showTooltips indeed uses the standard ‘title’.
Best regards,
MarkovSmart UI
https://www.htmlelements.com/Markov
KeymasterHi,
In order to hide a column, the smart-table instance should be used i.e after smart-table is created either by creating a new table or wrapping an existing table, you can use the smart-table API.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
– Setting row’s height to ‘auto’ in the layout requires measuring each individual row when it is rendered. This will have an effect over the performance.
– When you set the grid messages property for a given locale, you should declare all strings for the specific locale. Otherwise, the Grid will be unable to render undefined strings and an error may occur.
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/-
This reply was modified 1 year, 5 months ago by
Markov.
Markov
KeymasterHi Ferris DeHart,
Could you send a full example to support@jqwidgets.com which demonstrates the reported behavior?
Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
Default tooltips are also available by using the appearance.showTooltips property.
appearance: { showTooltips: true },
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi Leaonardo,
The Gantt does not have this feature. I created a work item about it.
Best Regards,
MarkovSmart UI Team
https://www.htmlelements.com/Markov
KeymasterHi,
Each column has a ‘visible’ property. If you want to hide it, you can use code like this: table.columns[0].visible = false;
Regards,
MarkovSmart UI Team
https://www.htmlelements.com/August 20, 2023 at 8:51 am in reply to: getting JSON codepen example to work with CORS issue #108598Markov
KeymasterHi,
It would not be possible to bypass CORS with codepen. All examples are also included in the download package.
Regards,
MarkovMarkov
KeymasterHi,
It’s just for demonstration that the developer can write something inside the function. May be a comment like ‘your code here’ would be better.
Regards,
MarkovJuly 28, 2023 at 11:03 am in reply to: how to control the window size or hide until content is loaded #108497Markov
KeymasterHi,
The open() method controls when the window will be opened. So you can ensure any content is loaded and then call the method to open the window.
Regards,
MarkovMarkov
KeymasterHi,
Unfortunately, such functionality is not supported by our docking layout for blazor component.
Regards,
MarkovMarkov
KeymasterHi Ozerk,
API for adding a tab item into an existing panel is still not available.
Regards,
MarkovMarkov
KeymasterYou can get the task this way:
private void OnKanbanChange(Event ev)
{KanbanChangeEventDetail detail = ev[“Detail”];
var oldValue = detail.OldValue;
var value = detail.Value;KanbanDataRecord record = new KanbanDataRecord();
record.Text = value.text;
record.Status = value.status;
record.Priority = value.priority;string task = detail.Task.ToString();
string valueToString = detail.Value.ToString();}
When you have the new properties, you can modify the record in the database.
I hope this helps!Markov
KeymasterHi Brandon,
Please, write to support@jqwidgets.com for License unlock instructions. There is a special unlock key which you will receive from the support team.
Best regards,
MarkovjQWidgets Team
https://www.jqwidgets.com/Markov
KeymasterHi Aviv,
A new ‘currentTime’ property is introduced which allows you to set the current time. In previous versions, it was always Today.Now, it defaults to Today, but users may set it.
Regards,
Peter -
This reply was modified 1 year, 5 months ago by
-
AuthorPosts