Radalert Popup doesn't showing the content on UI

1 Answer 72 Views
Window
Vijayakumar
Top achievements
Rank 1
Vijayakumar asked on 26 Jun 2022, 05:36 PM

Hi Team,

As I am trying use Radalert box to show the validation messages from javascript function. (Earlier we were using normal alert for validation messages).

I am able to get the radalert pop up but unable to see the messages on it as its blank box.

Please advise me on this.

Thanks in Advance

Vijaykumar

 

Code :

 

if (grid.get_masterTableView().get_selectedItems()[0] != undefined) {
        selRequestRowID = grid.get_masterTableView().getCellByColumnUniqueName(grid.get_masterTableView().get_selectedItems()[0], 'REQUESTINFO_ID').innerHTML;
    } else if (!all) {
        //alert(alertNothingSelected);
        radalert("Please select a record", 290, 220, "Alert"); //this is the message want show it on UI
        return false;
    }

 

As I can see it in debugger mode the line is executing without any error and even I can see the pop up box with my css .

 

1 Answer, 1 is accepted

Sort by
0
Accepted
Peter Milchev
Telerik team
answered on 29 Jun 2022, 08:30 AM

Hello Vijayakumar,

I am sharing a summary of the related support thread for convenience and better visibility from the community. 

The issue stems from having more than one RadWindowManagers on the page and one of them had an empty AlertTemplate.

Using a single RadWindowManager on the page and removing the custom AlertTemplate from it resolves the issue.

Regards,
Peter Milchev
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Window
Asked by
Vijayakumar
Top achievements
Rank 1
Answers by
Peter Milchev
Telerik team
Share this question
or