Re: Adobe is just a spammer now

2014-10-24 Thread John M Bliss

That's the way it's always looked for me...

On Thu, Oct 23, 2014 at 9:29 PM, Eric Roberts 
ow...@threeravensconsulting.com wrote:


 Here's the screenshot:  https://www.diigo.com/item/image/50m7r/eyn5  Look
 at
 the center column

 Eric

 -Original Message-
 From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk]
 Sent: Thursday, October 23, 2014 7:12 PM
 To: cf-talk
 Subject: RE: Adobe is just a spammer now


 Sorry to hear that.  Wish I was more surprised.  Adobe ..

 -Original Message-
 From: Mike K [mailto:afpwebwo...@gmail.com]
 Sent: 23 October 2014 22:56
 To: cf-talk
 Subject: Re: Adobe is just a spammer now


 Jenny, thank you for your contribution.  I hate to disagree with you, but
 since I knew the flash installer was going to try to force McAfee on me as
 it did last time  (and really made a mess of my Norton - I had to reinstall
 that too as a result), I was looking for the checkbox or button so I could
 decline to install it. .

 And it didnt appear.   I had no choice to not install McAfee.

 I think there are different versions of the installer,  or it offers the
 choice in some circumstances and not in others.But i DID NOT have the
 choice to decline installing McAfee.





 On Fri, Oct 24, 2014 at 1:42 AM, Jenny Gavin-Wear 
 jenn...@fasttrackonline.co.uk wrote:

 
  Yes you were.  It's just not very obvious.  It's in the middle of the
  top area of the screen.
 
  Regardless, it should default to unclicked.  I wrote to Adobe about
  this and got a prompt reply promising a change.  No change made, no
  change accepted.
  But when have Adobe ever listened to user feedback?
 
  -Original Message-
  From: Mike K [mailto:afpwebwo...@gmail.com]
  Sent: 18 October 2014 21:08
  To: cf-talk
  Subject: Re: Adobe is just a spammer now
 
 
  You can say whatever you like, Eric but i was given NO OPPORTUNITY TO
  DESELECT the installation of the McAfee product which I definitely DO
  NOT WANT.
 
  I downloaded the flash installer,   then ran the installer,  and it went
  right ahead and installed two items - the flash player and then
  without pause the McAfee crap.
 
  Because of the treatment I received from McAfee a few years back, I
  resolved never EVER to do business with McAfee again, and so it's
  doubly bad that Adobe force it on me.
 
 
  Cheers
  Mike Kear
  Windsor, NSW, Australia
  Adobe Certified Advanced ColdFusion Developer AFP Webworks
  http://afpwebworks.com ColdFusion 9 Enterprise, PHP, ASP, ASP.NET
  hosting from AUD$15/month
 
 
 
 
  On Sun, Oct 19, 2014 at 3:51 AM, Eric Roberts 
  ow...@threeravensconsulting.com wrote:
 
  
   Yes...you can deselect it...it is a detestable practice that should
   default to not checked rather than checked.
  
   --
 
 
 
 
 





 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359518
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


I need jqgrid to refresh the entire page, not just the grid

2014-10-24 Thread Ray Meade

I have a jqgrid that displays the job details of auto repairs. Right now, I 
have the grid reloading using the following script and I need to change it so 
that it refreshes the entire page so that the subtotal and total fields (that 
sit outside of the grid) update. Here is my relevant code, any help would be 
greatly appreciated:

var editOptions = {
keys: true,
successfunc: function () {
var $self = $(this);
setTimeout(function () {
$self.trigger(reloadGrid);
}, 50);
}
};
  
  $grid.jqGrid('navGrid', '#pager', {add: false, edit: false, del: 
true, 
search:false},{reloadAfterSubmit:true,afterSubmit:commonSubmit,closeAfterEdit:true,width:400},{reloadAfterSubmit:true,afterSubmit:commonSubmit,closeAfterAdd:false,width:400},{url:editGrid.cfc?method=delUser,closeAfterDelete:true,reloadAftersubmit:false,afterSubmit:commonSubmit,caption:Delete,msg:Delete
 selected,width:400});
  
  $grid.jqGrid('inlineNav', '#pager', 
{addParams:{position:last,addRowParams:editOptions},editRowParams:editOptions});
  }); 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359519
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: I need jqgrid to refresh the entire page, not just the grid

2014-10-24 Thread Ray Meade

By the way, I tried changing $self.trigger(reloadGrid); to 
$self.trigger(location.reload ()); but that just makes the new row disappear 
until I refresh the page manually using F5. (I also tried resetForm() and got 
the same results) 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359520
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm