Hi!
I want to put a label to the operations-delete section but with AJS append call. My code is the following at the moment, but the label not appearing under the delete button:
AJS.$('#operations-delete').append('<li class="aui-list-item"><a href="#" id="my_web_item_link" tabindex="-1"><span class="trigger-label">Push me</span></a></li>');
Can you help me with this? I dont know what the concrete attributes are to write before the append section.
You don't have to use the AJS...
Just do it like:
$('#operations-delete').append("<div>Something</div>");
BTW:
You can use your Web Developer tools in Chrome / Firefox to debug javascript. Open it and propably you'll see an error in a case like this.
Often you just use the wrong scope / timing in JS and something is "undefined" at the time it should be executed.
Thank your very much! It was'nt that easy but with your function calling i could solve my problem. Here is my latest version of the code:
$('#opsbar-operations_more_drop').append('<div class="aui-dropdown2-section"><ul><li class="aui-list-item"><a href="#" id="listDialog"><span class="trigger-label">PD rendering</span></a></li></ul></div>');
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your welcome & thanks for sharing your latest version :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.