Jump to content

ReyDev

Members
  • Posts

    539
  • Joined

  • Days Won

    3

Reputation Activity

  1. Thanks
    ReyDev got a reaction from Noble~ in Hotspot Image [Support Topic]   
    No.
    But we are going to add a new feature to the app that you can get jpg and png from images and their hotspots and use them wherever you want.
  2. Thanks
    ReyDev reacted to Telemacus2 in Hotspot Image [Support Topic]   
    Amazing! what are the requirements? like, do you need the gallery or pages app for this to work?
  3. Thanks
    ReyDev reacted to Jordan Miller in Hotspot Image [Support Topic]   
    Pretty cool idea!! 
  4. Like
    ReyDev got a reaction from LiquidFractal in Hotspot Image [Support Topic]   
    It's a good idea for a LMS system.
  5. Like
    ReyDev got a reaction from bernardprejean in Hotspot Image [Support Topic]   
    No.
    But we are going to add a new feature to the app that you can get jpg and png from images and their hotspots and use them wherever you want.
  6. Thanks
    ReyDev got a reaction from Telemacus2 in Hotspot Image [Support Topic]   
    Thanks,
    No application or plugin is required.
    You can use it wherever you want.
  7. Thanks
    ReyDev reacted to Nathan Explosion in JS does not work on production mode!   
    Do you see the files called in the page source or not? Forget about what the script itself is going to do - check the page source. If they are loading there, then worry about the content...if they aren't, then you haven't got the call to them correct.
  8. Thanks
    ReyDev reacted to Martin A. in JS does not work on production mode!   
    \IPS\Output::i()->jsFiles = array_merge( \IPS\Output::i()->jsFiles, \IPS\Output::i()->js( 'admin_scriptfile.js', 'myAppName', 'admin' ) );  
  9. Thanks
    ReyDev reacted to Miss_B in Some action after a widget is removed   
    Yes, you will need to do that by creating a hook.
  10. Thanks
    ReyDev reacted to Adriano Faria in Some action after a widget is removed   
    According to the JS widget file, the function above is called when you add/remove a block.
    You can debug by using \IPS\Log::Debug and see what shows up in your Console or using \IPS\Log::Log and see the error logs in your ACP.
  11. Like
    ReyDev reacted to bfarber in Custom form and input   
    Yes, see my answer to your first question. You can search throughout our codebase to see examples both of using Custom form helper instances, as well as custom formTemplate() calls. Displaying a topic uses a custom form template for instance.
  12. Like
    ReyDev reacted to bfarber in Custom form and input   
    You could either (1) create new form helper classes to facilitate custom inputs (we do this in Pages), or (2) use a custom form template to output the end result HTML however you want. There is also a Custom helper which lets you completely define the HTML and validation.
    $form->add( new \IPS\Helpers\Form\Custom( 'comments_meta_color', 'none', FALSE, array( 'getHtml' => function( $element ) { return \IPS\Theme::i()->getTemplate( 'forms', 'core', 'front' )->colorSelection( $element->name, $element->value ); } ), NULL, NULL, NULL, 'comments_meta_color' ) ); // \IPS\Output::i()->output = $form->customTemplate( array( \IPS\Theme::i()->getTemplate( 'forms', 'core' ), 'popupTemplate' ) ); Not out of the box, but again if you create your own form helper classes you could.
    As per the first question, you can use custom form templates to completely adjust the form HTML. We do this when generating a topic (although we still use the regular form helper row HTML).
    I would strongly recommend to use the Upload helper, but it's not a requirement if you have a compelling reason not to. Note that the Upload helper does a ton of stuff to facilitate uploads including chunking the uploads if they're too big, performing security checks on the uploaded files, storing files in the appropriate area (S3, database, filesystem, etc.). You'd have to keep those things in mind if you don't use the helper but still want to distribute your work.
  13. Like
    ReyDev got a reaction from Ziv Grosu in Problem in Client Area > support   
    It's ok, Thank you.
     
     
    Thank you for your support.
  14. Thanks
    ReyDev reacted to Sonya* in License key issue   
    I am afraid,only IPS can solve the issue with your license key and support. @bfarber already addressed it in your other topic 
     I would wait till they resolve the issue described, then create a support ticket. I know it is annoying to wait, but community cannot help with it.
  15. Thanks
    ReyDev reacted to bfarber in Problem in Client Area > support   
    @ReyDev you should be able to contact support now, sorry for the wait.
    @Ziv Grosu you don't seem to be affected by the same issue. Have you tried emailing support directly and/or submitting a ticket from your AdminCP using the support tool?
  16. Thanks
    ReyDev reacted to Charles in Problem in Client Area > support   
    Your support account should be fixed now. Sorry about that!
×
×
  • Create New...