仅标题显示,但消息未显示在Sencha警报消息框中

时间:2016-06-16 14:09:25

标签: cordova extjs sencha-touch sencha-touch-2

我是Sencha的新人, 我尝试在我的Sencha应用程序中使用消息框进行离线/在线消息,但在消息框中仅显示标题,它不会在消息框中显示任何消息。 代码:

 Ext.Msg.show({
            title: '<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> You are Offline!!!',
            msg: 'Do you want to Save the changes? ',
            multiline: true,
            width: 300
        });

看起来像:

enter image description here

请帮帮我。

2 个答案:

答案 0 :(得分:3)

您没有使用正确的属性。如果您比较the docs,则会看到他们使用message属性,而不是msg。此外,请注意,示例中的multiLine有一个大写L - 而你的还没有。

答案 1 :(得分:1)

在代码中创建正确的属性,您将获得所需的结果。

您的代码应为

Ext.Msg.show({
        title: '<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> You are Offline!!!',
        message: 'Do you want to Save the changes? ', // message
        multiLine: true, // Use camelCase
        width: 300
    });

你可以在fiddler Fidller

中看到