I have a ListGrid
displayed on a Dashboard Layout. In few case I need to show Notes messages that we usually do using SC.say()
.
But I have designed my own Canvas to display all such messages and I have placed this on the Parent dashboard.
Now when need comes to display message when some action take place on Listgrid component. The window is set to modal so my Notes Canvas displays but is masked with the Dashboard Layout.
I want to display the Canvas without masking ?
How can I achieve this to show the Canvas without Mask and also the ListGrid showing ?
![enter image description here][1] This is what actually happening as the window is set to isModal(true) and setModalMask(true) and I know its an optional but is required in our project but now i need to just bring the YELLOW canvas message display as normal highlighted and not with the mask as it is showing just now
public class GetMessageDialogBox extends Canvas
{
private GetMessageDialogBox(String messageText)
{
mainLayout = new GetHorizontalLayout("100%", "40", null, 0, 5, null);
btnClose = new GetImgButton(16, 16, "Red_Square_Close.png");
btnClose.setVisible(true);
btnClose.setShowTitle(true);
btnClose.addClickHandler(new ClickHandler()
{
@Override
public void onClick(ClickEvent event)
{
setAnimateTime(1000);
animateMove(10 , Window.getClientHeight());
isVisibleMessageStatus = false;
setVisible(false);
}
});
displayLabel = new GetLabel(messageText,"messageLabelDialogText");
displayLabel.setBackgroundColor("yellow");
displayLabel.setHeight100();
displayLabel.setWidth100();
displayLabel.setValign(VerticalAlignment.CENTER);
mainLayout.addMember(new Canvas(){{
setWidth("50%");
}});
mainLayout.addMember(displayLabel);
mainLayout.addMember(new Canvas(){{
setWidth("20%");
}});
mainLayout.addMember(btnClose);
setParentElement(StaticInfo.mainDashboardLayout);
setVisible(true);
setHeight(40);
setBackgroundColor("yellow");
setBorder("1px solid black");
setLeft(10);
setTop(Window.getClientHeight()-40);
setShowShadow(true);
setShadowOffset(5);
setShadowSoftness(5);
setAnimateTime(100);
timer.schedule(5000);
addChild(mainLayout);
customMask.show();
bringToFront();
show();
}
}
Now this Message component is called in a presenter file.
customMask.show();
winLoadList.bringToFront();
winLoadList.show();
The above code is used for List Grid as I need to show is unmask but now when I call the Message component as I also need the Message Component to be shown unmasked with the following code it but all three browsers gives different o/p.
customMask.show();
GetMessageDialogBox.getInstance(messages.LoadPresenter_NoRecordSelected()).bringToFront();
GetMessageDialogBox.getInstance(messages.LoadPresenter_NoRecordSelected()).show();