Hai All, I am using a Embedded View. Its working well.
My Problem is that when I delete all document from the view Its Show.
No documents found
Can I Change the Default Message
Like:- “No Data” in Place of “No documents found”
Where I write the code
Please Help Me
Thanks in Advance
Pawan
Subject: Embedded View Problem
I use this code in viewtemplatedefault form… you cna try and embedded a view instead of viewbody field
use code below:
in JS header:
var msg =‘<VALIGN=TOP>No Documents found
’
function CheckNoDocuments() { // function to replace the ‘No documents found’ message
if (document.getElementById(“view”).innerHTML.indexOf(“No documents found”) > 0) {
document.getElementById(“view”).innerHTML = “”
document.getElementById(“msg”).innerHTML = msg
} // end if
} // end function
on load event:
CheckNoDocuments();
and in form
$$viewbody field goes here
Subject: RE: Embedded View Problem
Hai, Bharat Thanks a Lot For The Nice Suggession. It Working well.
Thanks a lot
PAwan