Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    FormItem itemHoverHTML and valueHoverHTML problems

    SmartClient Version: v13.1p_2025-12-23/AllModules Development Only (built 2025-12-23)

    Hello, please try this test case:

    Code:
    isc.DynamicForm.create({
        ID: "testForm",
        width: 200,
        itemHoverWidth: 200,
        fields: [
            {name: "test",
             title: "Test",
             type: "text",
             defaultValue: "foo bar",
             itemHoverHTML : function () {
                 return "item hover";
             }
            }
        ]
    });
    as you can see, I have defined itemHoverHTML, but I only see it appear when I hover over the textBox, whereas I believe it should also appear on the title.

    Additionally, when trying to define valueHoverHTML:

    Code:
    isc.DynamicForm.create({
        ID: "testForm",
        width: 200,
        itemHoverWidth: 200,
        fields: [
            {name: "test",
             title: "Test",
             type: "text",
             defaultValue: "foo bar",
             valueHoverHTML : function () {
                 return "item hover";
             }
            }
        ]
    });
    it seems to me that it does not work at all. Is it a bug, or am I missing something?
Working...
X